home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / ISP / 00032_InstallNS.ls < prev    next >
Encoding:
Text File  |  2000-09-26  |  473 b   |  22 lines

  1. on mouseWithin
  2.   cursor(280)
  3.   member("InstallTitle").foreColor = 70
  4.   put "Click to install this ISP software to your hard drive" into member "InfoField"
  5. end
  6.  
  7. on mouseLeave
  8.   cursor(0)
  9.   member("InstallTitle").foreColor = 255
  10.   put EMPTY into member "InfoField"
  11. end
  12.  
  13. on mouseUp
  14.   if the platform contains "Windows" then
  15.     open(the moviePath & "ISPs\netscape_online\setup.exe")
  16.   else
  17.     if the platform contains "Macintosh" then
  18.       nothing()
  19.     end if
  20.   end if
  21. end
  22.